From: Wei Liu Date: Mon, 5 Dec 2016 16:45:36 +0000 (+0000) Subject: Travis-ci: specify KCONFIG_ALLCONFIG for randconfig X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~3273 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=dcdc58a6dbbf07256f862ac7aa50ac6e286ae185;p=xen.git Travis-ci: specify KCONFIG_ALLCONFIG for randconfig The file provided contains symbols that must be set to certain values. This then prevents random build breakage in travis due to known-incompatible symbol selections. Signed-off-by: Wei Liu Reviewed-by: Andrew Cooper Reviewed-by: Doug Goldstein --- diff --git a/scripts/travis-build b/scripts/travis-build index 584d008e41..0cb15a89e4 100755 --- a/scripts/travis-build +++ b/scripts/travis-build @@ -4,7 +4,7 @@ $CC --version # random config or default config if [[ "${RANDCONFIG}" == "y" ]]; then - make -C xen randconfig + make -C xen KCONFIG_ALLCONFIG=tools/kconfig/allrandom.config randconfig else make -C xen defconfig fi